home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2008 April
/
PCWorld_2008-04_cd.bin
/
komercni software
/
miton
/
SystemMechanic7Pro.exe
/
{app}
/
smhtml.dll
/
1033
/
HTML
/
IMAGE.JS
< prev
next >
Wrap
Text File
|
2008-01-24
|
1KB
|
63 lines
function Image()
{
this.ID = "";
this.src = "";
this.ImageHoversrc = "";
this.Align = "absmiddle";
this.Render = __RenderImage;
this.ChangeImage = __ChangeImage;
this.HoverOn = __HoverOnActionButton;
this.HoverOff = __HoverOffActionButton;
this._Rendered = false;
}
function __RenderImage()
{
var content = "";
if (this._Rendered)
return "";
//onmouseover="this.src='managepolicies-hover.gif'" onmouseout="this.src='managepolicies.gif'"
var mouseout = "";
var mouseover = "";
if( this.ImageHoversrc != "")
{
mouseout = "onmouseout=\"this.src='"+ this.src +"'\" ";
mouseover = "onmouseover=\"this.src='"+ this.ImageHoversrc +"'\" ";
}
content += "<img id=\"image_" + this.ID + "\" src="+this.src+" "+mouseout+" "+mouseover+" align=" + this.Align + " >";
this._Rendered = true;
return content;
}
function __ChangeImage()
{
var img = Get("image_" + this.ID);
img.src = this.src;
}
function __HoverOnActionButton()
{
var img = Get("image_" + this.ID);
img.src = this.ImageHoversrc;
}
function __HoverOffActionButton()
{
var img = Get("image_" + this.ID);
img.src = this.Image;
}